[docs] Update Repo Mind Light AW documentation for 2026-06-08#10
Open
szabta89 wants to merge 1 commit into
Open
[docs] Update Repo Mind Light AW documentation for 2026-06-08#10szabta89 wants to merge 1 commit into
szabta89 wants to merge 1 commit into
Conversation
Add soma to the config schema YAML example and note that graph_rag_zero and soma are mutually exclusive local retrieval backends. Soma is an embedding-free graph-structural backend available in the default public image; consumers who want embedding-free local retrieval should set query.graph_rag_zero: null and configure query.soma. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
soma: nullto the config schema YAML example underquery, showing it as an alternative embedding-free retrieval backend.query.graph_rag_zeroandquery.somaare mutually exclusive.graph_rag_zerois embedding-based and enabled by default;somais an embedding-free graph-structural backend available in the default public image. Consumers switching to Soma should setquery.graph_rag_zero: nulland configurequery.soma: {}.Source Context
repo-mind-light-source/repo_mind_light/config.py: theQuerySourcesConfigmodel has asoma: SomaConfig | None = Nonefield and a validator that rejects configs with bothgraph_rag_zeroandsomaset.repo-mind-light-source/README.md: documentssomaprominently as an alternative backend and showssoma: nullin the config reference.repo-mind-light-source/DOCKER.md: includes a full "Retrieval Backends" section explaining both backends and thatINCLUDE_SOMA=1is the default build arg, meaning the public image ships with Soma support.repo-mind-light-source/CHANGELOG.md: soma-related changes appear in v0.10.0 and v0.10.1 (the current source release), confirming this is a shipped feature.Validation
soma: nullalongsidecode_search, consistent with the structure in the source README.graph_rag_zeroandsomabeing mutually exclusive is enforced by amodel_validatorinQuerySourcesConfig.Notes
.github/workflows/shared/repo-mind-light.md; the recommended config snippet there covers the common case (GRZ default) and the soma note belongs in the reference docs rather than the shared workflow comments.SomaConfigfields (corpus_subdir,max_tokens,assembly, etc.) are not documented here since they are advanced knobs not needed for a basic Soma setup (soma: {}is sufficient to enable it).